Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

636137 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/143 - Movie Ratings Application

style.css cody/swapnilsparsh/30DaysOfJavaScript/143 - Movie Ratings Application/style.css
103 Views
0 Comments
.container{
display: block;
text-align: center;
}
input{
padding: 20px;
margin: 20px;
border-radius: 7px;
Movie Ratings Application cody/swapnilsparsh/30DaysOfJavaScript/143 - Movie Ratings Application/index.html
305 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Movie Ratings</title>
<link rel="stylesheet" href="style.css">
script.js cody/swapnilsparsh/30DaysOfJavaScript/143 - Movie Ratings Application/script.js
163 Views
0 Comments
function fun(e)
{
var search=document.getElementById("name").value;
fetch(`https://www.omdbapi.com/?t=${search}&apikey=16ba5256`)
.then(response => response.json())
.then(data => {
var s = `<table border="2">
<thead>